projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a4feb14
)
(Fdefconst): Mark variable as risky.
author
Richard M. Stallman
<rms@gnu.org>
Tue, 13 Jun 2006 23:09:17 +0000
(23:09 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Tue, 13 Jun 2006 23:09:17 +0000
(23:09 +0000)
src/eval.c
patch
|
blob
|
history
diff --git
a/src/eval.c
b/src/eval.c
index 20f29b5f06bfd1eb78f3e5ba46b37e32a7a252ce..5f8d266ec7b78eb7f69d73eceb9e271435782ae3 100644
(file)
--- a/
src/eval.c
+++ b/
src/eval.c
@@
-195,9
+195,10
@@
int handling_signal;
Lisp_Object Vmacro_declaration_function;
+extern Lisp_Object Qrisky_local_variable;
static Lisp_Object funcall_lambda P_ ((Lisp_Object, int, Lisp_Object*));
-
+
\f
void
init_eval_once ()
{
@@
-895,6
+896,7
@@
usage: (defconst SYMBOL INITVALUE [DOCSTRING]) */)
tem = Fpurecopy (tem);
Fput (sym, Qvariable_documentation, tem);
}
+ Fput (sym, Qrisky_local_variable, Qt);
LOADHIST_ATTACH (sym);
return sym;
}